home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Trouble.xpl < prev    next >
Text File  |  2003-11-19  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\Troubleshooting"
  5. "NAME"="Channel Bar Position"
  6. "VERSION"="2.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Correct Channel Bar Position"
  9. "DESCRIPTION 1"="If your Channel Bar is missing, the position of it is maybe not correct. Click the first button to correct this."
  10. "AUTHOR"="Xteq Systems"
  11. "CONTACTURL"="http://www.xteq.com"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13. "COMMENT 1"=" "
  14. "COMMENT 2"="Thanks to Ojatex for his help!"
  15.  
  16.  
  17. sPCheck="HKCU\Software\Microsoft\Internet Explorer\"
  18.  
  19. sV1="HKCU\Software\Microsoft\Internet Explorer\Channels\Window_Placement"
  20.  
  21.  
  22. Sub Plugin_Initialize 
  23.  If RegPathExists(sPCheck) then
  24.     'do nothing???
  25.  else
  26.     Disable
  27.  end if
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  If ElementIndex=1 then
  35.     s=RegReadValue(sV1)
  36.  
  37.     If IsEmpty(s)=false then
  38.        Call RegDeleteValue(sV1)
  39.     end if
  40.  
  41.     Call MsgInformation("Corrected")
  42.  end if 
  43.  
  44.  
  45. End Sub
  46.  
  47. Sub Plugin_Terminate 
  48. End Sub
  49.